Skip to content

chore(deps): bump the npm-minor-patch group across 1 directory with 13 updates - #172

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-minor-patch-d5c86cdd3b
Open

chore(deps): bump the npm-minor-patch group across 1 directory with 13 updates#172
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-minor-patch-d5c86cdd3b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 22, 2026

Copy link
Copy Markdown

Bumps the npm-minor-patch group with 13 updates in the / directory:

Package From To
@changesets/cli 2.31.0 2.31.1
@solana-program/address-lookup-table 0.11.0 0.13.0
@codama/nodes-from-anchor 1.5.0 1.5.3
@codama/renderers-js 2.2.0 2.3.1
codama 1.7.0 1.10.0
litesvm 1.1.0 1.3.0
prettier 3.8.3 3.9.6
typedoc 0.28.13 0.28.20
typedoc-plugin-markdown 4.9.0 4.12.0
vitest 4.1.8 4.1.10
@tanstack/react-query 5.101.0 5.101.4
axe-core 4.12.0 4.12.1
postcss 8.5.20 8.5.23

Updates @changesets/cli from 2.31.0 to 2.31.1

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.31.1

Patch Changes

  • #2159 15cf592 Thanks @​ingvaldlorentzen! - Fixed already-published version detection with npm 12, which always wraps successful npm info --json output in an array. The unwrapped output made changeset publish treat every package as unpublished and fail attempting to republish existing versions.
Commits
  • a897bb8 Use a different publish tag for maintenance/v2 branch (#2162)
  • e8650b9 Version Packages (#2161)
  • 15cf592 Fixed handling of the npm 12 info output (#2159)
  • 9f2cb2a Configure Changesets for maintenance/v2 line (#2076)
  • 97247cb Change allowed publish pattern to maintenance/v* given rulesets behavior (#...
  • 13286a8 Build(deps): Bump the github-actions group across 1 directory with 3 updates ...
  • 8f6acd6 Update dependabot group to exclude major (#2067)
  • c70c675 Setup backport workflow and sync next setup (#2057)
  • 9672019 Remove SECURITY.md to defer to .github (#2055)
  • 18e1661 Use internal bot for versioning (#2039)
  • Additional commits viewable in compare view

Updates @solana-program/address-lookup-table from 0.11.0 to 0.13.0

Release notes

Sourced from @​solana-program/address-lookup-table's releases.

[email protected]

What's new

[email protected]

What's new

[email protected]

What's new

Commits
  • 874808e Publish [email protected]
  • 19c1047 Bump JS client to @​solana/kit v7 (#315)
  • 8fcde2b build(deps): bump bytemuck from 1.25.0 to 1.25.1 (#314)
  • 225952a build(deps): bump spl-collections from 0.1.1 to 0.1.2 (#313)
  • 8e2bdc9 deps: Update crossbeam-epoch for audit (#312)
  • b600d3a build(deps-dev): bump typedoc from 0.28.19 to 0.28.20 in /clients/js (#311)
  • fdbd82e build(deps-dev): bump vitest from 4.1.9 to 4.1.10 in /clients/js (#310)
  • 8178564 build(deps): bump solana-sysvar from 4.0.0 to 4.1.0 (#299)
  • d9a07c0 build(deps-dev): bump @​types/node from 26.0.1 to 26.1.0 in /clients/js (#308)
  • a8b53b1 build(deps-dev): bump oxlint-tsgolint from 0.23.0 to 0.24.0 in /clients/js (#...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​solana-program/address-lookup-table since your current version.


Updates @codama/nodes-from-anchor from 1.5.0 to 1.5.3

Release notes

Sourced from @​codama/nodes-from-anchor's releases.

@​codama/nodes-from-anchor@​1.5.3

Patch Changes

@​codama/nodes-from-anchor@​1.5.2

Patch Changes

  • Updated dependencies [d3d9c1d]:
    • @​codama/nodes@​1.9.0
    • @​codama/visitors@​1.9.0
    • @​codama/errors@​1.9.0

@​codama/nodes-from-anchor@​1.5.1

Patch Changes

  • #995 2f7c443 Thanks @​lorisleiva! - Regenerate the entire @codama/node-types source surface from the encoded @codama/spec description, via the new private @codama-internal/spec-generators package.

    The bulk of the surface lives under src/generated/ and is produced by the gen-ts-node-types generator from the spec. The previously hand-maintained interfaces are gone; every node, union, enumeration, and per-spec shared type is rebuilt from the spec on every pnpm generate run.

    A small set of static helpers — the brand types, the Docs alias, and the Version template-literal type — live as hand-written sibling files at the top of packages/node-types/src/, alongside the existing ProgramVersion deprecated alias. They are imported by the generated surface but never regenerated, since their content doesn't depend on the spec. The generator wipes only src/generated/ on every run; hand-written content at the top level survives. The per-spec CodamaVersion literal stays generated, in its own src/generated/shared/codamaVersion.ts file pinned to the spec version at generation time.

    Most of the rebuild is structural: imports now point at per-file paths (./linkNodes/PdaLinkNode) instead of subdirectory barrels, every interface and field carries a JSDoc block sourced from the spec, and array fields are emitted as Array<T> rather than T[] so an inline-union element type doesn't need extra parentheses to preserve precedence. A handful of named API differences also shake out from this:

    • accountNode.size is now typed as number | undefined (the previous | null arm had no consumer and is dropped).
    • programNode.origin is now typed as the named ProgramOrigin union ('anchor' | 'shank') instead of an inline literal union.
    • instructionAccountNode.isSigner and instructionRemainingAccountsNode.isSigner now read boolean | 'either' instead of true | false | 'either' (a TypeScript-only readability normalisation; the encoded spec keeps the explicit true | false form so other codegen targets can still emit a multi-variant enum).
    • numberTypeNode.format and stringTypeNode.encoding are emitted as named NumberFormat / BytesEncoding aliases imported from ./shared/, with the same generic-narrowing behaviour preserved.
    • programNode.version is now typed as the unified Version template-literal alias (`${number}.${number}.${number}`) — a tighter shape than the previous plain string, so non-conforming literal strings will now surface as TypeScript errors at the call site. The historical ProgramVersion name is preserved as a hand-written @deprecated re-export so existing consumers continue to compile; @codama/nodes-from-anchor is updated to import Version directly.
    • docs? fields use a Docs = Array<string> alias mirroring the 'docs' TypeExpr kind in @codama/spec. The alias is hand-written and lives at packages/node-types/src/Docs.ts.
    • Documentation strings that ship as multiple paragraphs in the spec now render as multi-paragraph JSDoc blocks. Affected fields and types include accountNode.discriminators, instructionNode.discriminators, instructionAccountNode.isSigner, instructionRemainingAccountsNode.isSigner, rootNode, the ConditionalValueNode interface and its condition, InstructionInputValueNode, ResolverValueNode, AmountTypeNode and its unit, MapTypeNode.size, NestedTypeNode, StringTypeNode.size, EnumValueNode.value, and NumberValueNode.number.

    Alongside the per-node interfaces, the package now exports seven Registered<Category>Node category-registry unions (RegisteredContextualValueNode, RegisteredCountNode, RegisteredDiscriminatorNode, RegisteredLinkNode, RegisteredPdaSeedNode, RegisteredTypeNode, RegisteredValueNode) corresponding one-to-one with @codama/spec's category registries, plus a GetNodeFromKind<TKind extends NodeKind> helper that resolves to the concrete interface for a given kind. The registry unions are the recommended extension point for downstream packages that need to introduce custom node kinds.

    The generator consumes @codama/[email protected], which reshapes the spec into per-category groups (spec.categories[]) and renames the nestedTypeNode TypeExpr kind to nestedUnion (with an explicit alias field). All docs? fields throughout the spec are arrays of paragraph strings rather than single newline-separated strings — the renderer accepts the array shape directly. Internally, the generator's renderers are layout-agnostic: they emit use(...) calls keyed by symbolic module strings (e.g. 'node:numberTypeNode', 'enumeration:Endianness', 'brand:CamelCaseString'), and a single per-spec RenderScope resolves those symbolic keys to concrete file locations at write time. Adding a new file kind to the generator means extending the RenderScope symbol map; renderers themselves stay free of file-layout knowledge.

  • Updated dependencies [0b3a781]:

    • @​codama/nodes@​1.8.0
    • @​codama/errors@​1.8.0
    • @​codama/visitors@​1.8.0
Commits

Updates @codama/renderers-js from 2.2.0 to 2.3.1

Release notes

Sourced from @​codama/renderers-js's releases.

v2.3.1

Patch Changes

  • #166 28793b5 Thanks @​lorisleiva! - Support @codama/[email protected], whose node array attributes are now optional (Array<T> | undefined). Array reads are guarded with ?? [] throughout the renderer, and the new injectedValueNode and accountFieldValueNode instruction-input default kinds now throw an explicit unsupported-node error rather than being silently mishandled.

v2.3.0

Minor Changes

  • #146 b75dce1 Thanks @​lorisleiva! - Support @solana/kit 6.10.0 in generated program plugins. The generated xxxProgram() factory previously annotated its return type as Omit<T, 'xxx'> & { xxx: XxxPlugin }, which is no longer assignable to the value returned by extendClient now that the latter returns the homomorphic ExtendedClient<T, TAdditions> type. The factory now annotates its return type with ExtendedClient directly, and the default @solana/* dependency versions written into a generated client's package.json (via syncPackageJson) are bumped to ^6.10.0 so that ExtendedClient is available.

  • #143 f513041 Thanks @​amilz! - Expose identifyAccount, identifyInstruction, and parseInstruction on generated program plugins. When a program has accounts or instructions with discriminators, the plugin object now surfaces the corresponding identifier and parser helpers as client.myProgram.identifyAccount(...), client.myProgram.identifyInstruction(...), and client.myProgram.parseInstruction(...), making it easier to build indexers without re-importing the per-function helpers.

Changelog

Sourced from @​codama/renderers-js's changelog.

2.3.1

Patch Changes

  • #166 28793b5 Thanks @​lorisleiva! - Support @codama/[email protected], whose node array attributes are now optional (Array<T> | undefined). Array reads are guarded with ?? [] throughout the renderer, and the new injectedValueNode and accountFieldValueNode instruction-input default kinds now throw an explicit unsupported-node error rather than being silently mishandled.

2.3.0

Minor Changes

  • #146 b75dce1 Thanks @​lorisleiva! - Support @solana/kit 6.10.0 in generated program plugins. The generated xxxProgram() factory previously annotated its return type as Omit<T, 'xxx'> & { xxx: XxxPlugin }, which is no longer assignable to the value returned by extendClient now that the latter returns the homomorphic ExtendedClient<T, TAdditions> type. The factory now annotates its return type with ExtendedClient directly, and the default @solana/* dependency versions written into a generated client's package.json (via syncPackageJson) are bumped to ^6.10.0 so that ExtendedClient is available.

  • #143 f513041 Thanks @​amilz! - Expose identifyAccount, identifyInstruction, and parseInstruction on generated program plugins. When a program has accounts or instructions with discriminators, the plugin object now surfaces the corresponding identifier and parser helpers as client.myProgram.identifyAccount(...), client.myProgram.identifyInstruction(...), and client.myProgram.parseInstruction(...), making it easier to build indexers without re-importing the per-function helpers.

Commits

Updates codama from 1.7.0 to 1.10.0

Release notes

Sourced from codama's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

  • Updated dependencies [0b3a781]:
    • @​codama/nodes@​1.8.0
    • @​codama/errors@​1.8.0
    • @​codama/cli@​1.5.3
    • @​codama/validators@​1.8.0
    • @​codama/visitors@​1.8.0
Commits

Updates litesvm from 1.1.0 to 1.3.0

Updates prettier from 3.8.3 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

3.9.5

🔗 Changelog

3.9.4

  • Angular: Format @content(name) -> @content (name) to align with other block syntax (#19499 by @​fisker)

🔗 Changelog

3.9.3

🔗 Changelog

3.9.1

🔗 Changelog

3.9.0

diff

🔗 Prettier 3.9: Major parser upgrades and Formatting improvements

3.8.5

🔗 Changelog

3.8.4

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
  "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits

Updates typedoc from 0.28.13 to 0.28.20

Release notes

Sourced from typedoc's releases.

v0.28.20

Features

  • Group/category section headings (<h2>) in the default theme now include an id attribute so they can be linked to via fragment identifiers (e.g. modules.html#classes), #3029.
  • Added a @reexport modifier tag to have TypeDoc convert variable/type references as a re-export instead of a new symbol, #3096.
  • API: Introduced generateOutputsBegin and generateOutputsEnd events on Application for plugin use.

Bug Fixes

  • When --emit none is used, TypeDoc will now report warnings about missing relative paths previously reported when rendering, #3078.
  • Improved performance via asynchronously performing git and file write operations, more performant JSX rendering, and source code bundling, #3103.
  • A @hidden tag on a constructor parameter-property will now only hide the property, not both the property and the parameter, #3111.
  • Custom @group and @category titles with the same sort weight are now ordered consistently with the alphabetical reflection sort, #3120.

Thanks!

v0.28.19

Features

  • Added French translations for the TypeDoc interface and help descriptions.
  • Added support for triple-slash comment style, which requires exactly three slashes in the comment, #3089.

Bug Fixes

  • Corrected handling of icon caching for custom themes which use SVGs with a larger view box than TypeDoc's default theme.
  • Fixed short summary comment handling on module pages when the project source files use Windows line endings, #3093.

Thanks!

v0.28.18

Features

  • Support TypeScript 6.0, #3084.

v0.28.17

... (truncated)

Changelog

Sourced from typedoc's changelog.

v0.28.20 (2026-07-05)

Features

  • Group/category section headings (<h2>) in the default theme now include an id attribute so they can be linked to via fragment identifiers (e.g. modules.html#classes), #3029.
  • Added a @reexport modifier tag to have TypeDoc convert variable/type references as a re-export instead of a new symbol, #3096.
  • API: Introduced generateOutputsBegin and generateOutputsEnd events on Application for plugin use.

Bug Fixes

  • When --emit none is used, TypeDoc will now report warnings about missing relative paths previously reported when rendering, #3078.
  • Improved performance via asynchronously performing git and file write operations, more performant JSX rendering, and source code bundling, #3103.
  • A @hidden tag on a constructor parameter-property will now only hide the property, not both the property and the parameter, #3111.
  • Custom @group and @category titles with the same sort weight are now ordered consistently with the alphabetical reflection sort, #3120.

Thanks!

v0.28.19 (2026-04-12)

Features

  • Added French translations for the TypeDoc interface and help descriptions.
  • Added support for triple-slash comment style, which requires exactly three slashes in the comment, #3089.

Bug Fixes

  • Corrected handling of icon caching for custom themes which use SVGs with a larger view box than TypeDoc's default theme.
  • Fixed short summary comment handling on module pages when the project source files use Windows line endings, #3093.

Thanks!

v0.28.18 (2026-03-23)

Features

  • Support TypeScript 6.0, #3084.

v0.28.17 (2026-02-13)

... (truncated)

Commits
  • 34d843b Update changelog for release
  • fbd4a25 Bump version to 0.28.20
  • 93ba157 Update dependencies in example
  • e8c5df8 Remove unnecessary files from distribution
  • 392b0dd Update dependencies
  • 8510dd4 Add missing entries in changelog before release
  • 51dc052 Update change log for 0.28.20 release
  • 72f20cd Merge branch 'fix-locale-sort-group-category-titles' into dev
  • 623f2c0 Fix failing test, accept slightly slower build for now
  • c8bdf14 Minor config tweak to improve dev build time
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for typedoc since your current version.


Updates typedoc-plugin-markdown from 4.9.0 to 4.12.0

Release notes

Sourced from typedoc-plugin-markdown's releases.

[email protected]

Minor Changes

  • Support JSDoc-style <caption> labels for @example tags (#861).
  • Add Markdown theme translations for the fr locale.

Patch Changes

  • Fixed duplicate sidebar groups when navigation.includeCategories=true and navigation.includeGroups=false (#866).

[email protected]

Minor Changes

  • Improved rendering of union types when documented type details are present (#857).
  • Improved rendering of union types used in parameter declarations.
  • When a function returns another function, full documentation for the returned function is now only shown when meaningful comments are present, aligning with the default theme.
  • Index signature declarations are now rendered as blockquotes for improved consistency.

Patch Changes

  • Added locale translations for grouped @example headings (#858).
  • Function-typed properties are now rendered without parentheses in headings. This avoids implying that the member is a method and more accurately reflects that it is a property whose type is a function.
  • Optional properties are now indicated with ? in the property name, making the optionality explicit.
  • All pipe characters (|) in union type output are now escaped.

[email protected]

Minor Changes

  • A JSON schema to be consumed by typedoc.json is now published to the package root.
  • Mark parameters with default values as optional, matching the default TypeDoc theme.

Patch Changes

  • Fixed markdownlint errors related to empty table cells and invalid link fragments.
  • Anchors inside table cells (when property formats equal "table") are now namespaced by reflection kind (for example property-foo) to prevent collisions with Markdown heading slugs and ensure stable in-page links (#856).
  • Resolve "does not have an anchor but one was requested" warnings in verbose log mode (#850).
  • Guard against undefined types causing errors in complex types in tables (thanks @​ilyabo).
Changelog

Sourced from typedoc-plugin-markdown's changelog.

4.12.0 (2026-06-02)

Minor Changes

  • Support JSDoc-style <caption> labels for @example tags (#861).
  • Add Markdown theme translations for the fr locale.

Patch Changes

  • Fixed duplicate sidebar groups when navigation.includeCategories=true and navigation.includeGroups=false (#866).

4.11.0 (2026-03-18)

Minor Changes

  • Improved rendering of union types when documented type details are present (#857).
  • Improved rendering of union types used in parameter declarations.
  • When a function returns another function, full documentation for the returned function is now only shown when meaningful comments are present, aligning with the default theme.
  • Index signature declarations are now rendered as blockquotes for improved consistency.

Patch Changes

  • Added locale translations for grouped @example headings (#858).
  • Function-typed properties are now rendered without parentheses in headings. This avoids implying that the member is a method and more accurately reflects that it is a property whose type is a function.
  • Optional properties are now indicated with ? in the property name, making the optionality explicit.
  • All pipe characters (|) in union type output are now escaped.

4.10.0 (2026-02-06)

Minor Changes

  • A JSON schema to be consumed by typedoc.json is now published to the package root.
  • Mark parameters with default values as optional, matching the default TypeDoc theme.

Patch Changes

  • Fixed markdownlint errors related to empty table cells and invalid link fragments.
  • Anchors inside table cells (when property formats equal "table") are now namespaced by reflection kind (for example property-foo) to prevent collisions with Markdown heading slugs and ensure stable in-page links (#856).
  • Resolve "does not have an anchor but one was requested" warnings in verbose log mode (#850).
  • Guard against undefined types causing errors in complex types in tables (thanks @​ilyabo).
Commits
  • 7d601e1 Version Packages
  • 1ab02e8 fix(core): fixed duplicate sidebar groups (#866)
  • 7696589 fix(core): support JSDoc-style \<caption> labels for @example tags (#861)
  • 94e7353 chore(core): refactor tweaks
  • 345eace chore(docs): updated docs
  • e7dc9cb chore(all): fixed specs
  • 37fa5e9 chore(all): add mocha to types
  • e0fe371 feat(core): add Markdown theme translations for the fr locale
  • 88f7efd chore(all): updated packages
  • 9bdc290 chore(docs): updated readmes
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for typedoc-plugin-markdown since your current version.


Updates vitest from 4.1.8 to 4.1.10

Release notes

Sourced from vitest's releases.

v4.1.10

   🐞 Bug Fixes

    View changes on GitHub

v4.1.9

🐞 Bug Fixes

  • Fix importOriginal with optimizer and query import [backport to v4] - by Hiroshi Ogawa, David Harris, Codexand Vladimir in vitest-dev/vitest#10546 (a5180)
  • browser:
    • Wait for orchestrator readiness before resolving browser sessions [backport to v4] - by Vladimir and Séamus O'Connor in vitest-dev/vitest#10555 (7fb29)

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 22, 2026
@dependabot
dependabot Bot requested review from 7etsuo and signerless as code owners July 22, 2026 07:39
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 22, 2026
…3 updates

Bumps the npm-minor-patch group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.31.0` | `2.31.1` |
| [@solana-program/address-lookup-table](https://github.com/solana-program/address-lookup-table) | `0.11.0` | `0.13.0` |
| [@codama/nodes-from-anchor](https://github.com/codama-idl/codama) | `1.5.0` | `1.5.3` |
| [@codama/renderers-js](https://github.com/codama-idl/renderers-js) | `2.2.0` | `2.3.1` |
| [codama](https://github.com/codama-idl/codama) | `1.7.0` | `1.10.0` |
| litesvm | `1.1.0` | `1.3.0` |
| [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.9.6` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.13` | `0.28.20` |
| [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown) | `4.9.0` | `4.12.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.8` | `4.1.10` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.101.0` | `5.101.4` |
| [axe-core](https://github.com/dequelabs/axe-core) | `4.12.0` | `4.12.1` |
| [postcss](https://github.com/postcss/postcss) | `8.5.20` | `8.5.23` |



Updates `@changesets/cli` from 2.31.0 to 2.31.1
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/[email protected]...@changesets/[email protected])

Updates `@solana-program/address-lookup-table` from 0.11.0 to 0.13.0
- [Release notes](https://github.com/solana-program/address-lookup-table/releases)
- [Commits](https://github.com/solana-program/address-lookup-table/compare/[email protected]@v0.13.0)

Updates `@codama/nodes-from-anchor` from 1.5.0 to 1.5.3
- [Release notes](https://github.com/codama-idl/codama/releases)
- [Commits](https://github.com/codama-idl/codama/compare/@codama/[email protected]...@codama/[email protected])

Updates `@codama/renderers-js` from 2.2.0 to 2.3.1
- [Release notes](https://github.com/codama-idl/renderers-js/releases)
- [Changelog](https://github.com/codama-idl/renderers-js/blob/main/CHANGELOG.md)
- [Commits](codama-idl/renderers-js@v2.2.0...v2.3.1)

Updates `codama` from 1.7.0 to 1.10.0
- [Release notes](https://github.com/codama-idl/codama/releases)
- [Commits](https://github.com/codama-idl/codama/compare/[email protected]@1.10.0)

Updates `litesvm` from 1.1.0 to 1.3.0

Updates `prettier` from 3.8.3 to 3.9.6
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.3...3.9.6)

Updates `typedoc` from 0.28.13 to 0.28.20
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.28.13...v0.28.20)

Updates `typedoc-plugin-markdown` from 4.9.0 to 4.12.0
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/[email protected]/packages/typedoc-plugin-markdown)

Updates `vitest` from 4.1.8 to 4.1.10
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.10/packages/vitest)

Updates `@tanstack/react-query` from 5.101.0 to 5.101.4
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/[email protected]/packages/react-query)

Updates `axe-core` from 4.12.0 to 4.12.1
- [Release notes](https://github.com/dequelabs/axe-core/releases)
- [Changelog](https://github.com/dequelabs/axe-core/blob/develop/CHANGELOG.md)
- [Commits](dequelabs/axe-core@v4.12.0...v4.12.1)

Updates `postcss` from 8.5.20 to 8.5.23
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.20...8.5.23)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-version: 2.31.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: "@codama/nodes-from-anchor"
  dependency-version: 1.5.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: "@codama/renderers-js"
  dependency-version: 2.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: "@solana-program/address-lookup-table"
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.101.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: axe-core
  dependency-version: 4.12.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: codama
  dependency-version: 1.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: litesvm
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: postcss
  dependency-version: 8.5.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: typedoc
  dependency-version: 0.28.20
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: typedoc-plugin-markdown
  dependency-version: 4.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: vitest
  dependency-version: 4.1.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/npm-minor-patch-d5c86cdd3b branch from eec504d to b4b26e9 Compare July 27, 2026 17:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants